com.sabro.jbusiness.uteis
Enum DataPeriodo.TipoPeriodo

java.lang.Object
  extended by java.lang.Enum<DataPeriodo.TipoPeriodo>
      extended by com.sabro.jbusiness.uteis.DataPeriodo.TipoPeriodo
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataPeriodo.TipoPeriodo>
Enclosing class:
DataPeriodo

public static enum DataPeriodo.TipoPeriodo
extends java.lang.Enum<DataPeriodo.TipoPeriodo>


Enum Constant Summary
DATE_ALL
           
DATE_BEGIN
           
DATE_END
           
DATE_OTHER
           
DAY_LAST07
           
DAY_LAST14
           
DAY_LAST15
           
DAY_LAST30
           
DAY_LAST90
           
DAY_NEXT07
           
DAY_NEXT14
           
DAY_NEXT15
           
DAY_NEXT30
           
DAY_NEXT90
           
DAY_TODAY
           
DAY_TOMORROW
           
DAY_YESTERDAY
           
MONTH_LAST
           
MONTH_LAST03
           
MONTH_LAST06
           
MONTH_LAST12
           
MONTH_NEXT
           
MONTH_NEXT03
           
MONTH_NEXT06
           
MONTH_NEXT12
           
MONTH_THIS
           
WEEK_LAST
           
WEEK_LAST02
           
WEEK_NEXT
           
WEEK_NEXT02
           
WEEK_THIS
           
YEAR_LAST
           
YEAR_NEXT
           
YEAR_THIS
           
 
Method Summary
static DataPeriodo.TipoPeriodo valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataPeriodo.TipoPeriodo[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DATE_OTHER

public static final DataPeriodo.TipoPeriodo DATE_OTHER

DATE_ALL

public static final DataPeriodo.TipoPeriodo DATE_ALL

DATE_END

public static final DataPeriodo.TipoPeriodo DATE_END

DATE_BEGIN

public static final DataPeriodo.TipoPeriodo DATE_BEGIN

DAY_TODAY

public static final DataPeriodo.TipoPeriodo DAY_TODAY

DAY_YESTERDAY

public static final DataPeriodo.TipoPeriodo DAY_YESTERDAY

DAY_TOMORROW

public static final DataPeriodo.TipoPeriodo DAY_TOMORROW

DAY_LAST07

public static final DataPeriodo.TipoPeriodo DAY_LAST07

DAY_NEXT07

public static final DataPeriodo.TipoPeriodo DAY_NEXT07

DAY_LAST14

public static final DataPeriodo.TipoPeriodo DAY_LAST14

DAY_NEXT14

public static final DataPeriodo.TipoPeriodo DAY_NEXT14

DAY_LAST15

public static final DataPeriodo.TipoPeriodo DAY_LAST15

DAY_NEXT15

public static final DataPeriodo.TipoPeriodo DAY_NEXT15

DAY_LAST30

public static final DataPeriodo.TipoPeriodo DAY_LAST30

DAY_NEXT30

public static final DataPeriodo.TipoPeriodo DAY_NEXT30

DAY_LAST90

public static final DataPeriodo.TipoPeriodo DAY_LAST90

DAY_NEXT90

public static final DataPeriodo.TipoPeriodo DAY_NEXT90

WEEK_THIS

public static final DataPeriodo.TipoPeriodo WEEK_THIS

WEEK_LAST

public static final DataPeriodo.TipoPeriodo WEEK_LAST

WEEK_NEXT

public static final DataPeriodo.TipoPeriodo WEEK_NEXT

WEEK_LAST02

public static final DataPeriodo.TipoPeriodo WEEK_LAST02

WEEK_NEXT02

public static final DataPeriodo.TipoPeriodo WEEK_NEXT02

MONTH_THIS

public static final DataPeriodo.TipoPeriodo MONTH_THIS

MONTH_LAST

public static final DataPeriodo.TipoPeriodo MONTH_LAST

MONTH_NEXT

public static final DataPeriodo.TipoPeriodo MONTH_NEXT

MONTH_LAST03

public static final DataPeriodo.TipoPeriodo MONTH_LAST03

MONTH_NEXT03

public static final DataPeriodo.TipoPeriodo MONTH_NEXT03

MONTH_LAST06

public static final DataPeriodo.TipoPeriodo MONTH_LAST06

MONTH_NEXT06

public static final DataPeriodo.TipoPeriodo MONTH_NEXT06

MONTH_LAST12

public static final DataPeriodo.TipoPeriodo MONTH_LAST12

MONTH_NEXT12

public static final DataPeriodo.TipoPeriodo MONTH_NEXT12

YEAR_THIS

public static final DataPeriodo.TipoPeriodo YEAR_THIS

YEAR_LAST

public static final DataPeriodo.TipoPeriodo YEAR_LAST

YEAR_NEXT

public static final DataPeriodo.TipoPeriodo YEAR_NEXT
Method Detail

values

public static DataPeriodo.TipoPeriodo[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DataPeriodo.TipoPeriodo c : DataPeriodo.TipoPeriodo.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DataPeriodo.TipoPeriodo valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null